home *** CD-ROM | disk | FTP | other *** search
/ ASME's Mechanical Engine…ing Toolkit 1997 December / ASME's Mechanical Engineering Toolkit 1997 December.iso / c_lang / tccurses.lzh / WINCLEAR.C < prev    next >
C/C++ Source or Header  |  1987-09-07  |  1KB  |  39 lines

  1. /****************************************************************/
  2. /* Clear() routines of the PCcurses package            */
  3. /*                                */
  4. /****************************************************************/
  5. /* This version of curses is based on ncurses, a curses version    */
  6. /* originally written by Pavel Curtis at Cornell University.    */
  7. /* I have made substantial changes to make it run on IBM PC's,    */
  8. /* and therefore consider myself free to make it public domain.    */
  9. /*        Bjorn Larsson (...mcvax!enea!infovax!bl)    */
  10. /****************************************************************/
  11. /* 1.0:    Release:                    870515    */
  12. /****************************************************************/
  13.  
  14. #include <curses.h>
  15. #include <curspriv.h>
  16.  
  17. /****************************************************************/
  18. /* Wclear() fills all lines of window 'win' with blanks, and    */
  19. /* marks the window to be cleared at next refresh operation.    */
  20. /****************************************************************/
  21.  
  22. void    wclear(win)
  23.   WINDOW    *win;
  24.   {
  25.   werase(win);
  26.   win->_clear = TRUE;
  27.   } /* wclear */
  28.  
  29. /****************************************************************/
  30. /* Clear() fills all lines of stdscr with blanks, and marks    */
  31. /* marks sdtscr to be cleared at next refresh operation.    */
  32. /****************************************************************/
  33.  
  34. void clear()
  35.   {
  36.   werase(stdscr);
  37.   stdscr->_clear = TRUE;
  38.   } /* clear */
  39.